home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / manageme / tcpdump-.7 / tcpdump- / tcpdump-richard-1.7 / libpcap-0.0 / order.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-17  |  343 b   |  15 lines

  1. #ifndef _ORDER_H
  2. #define _ORDER_H
  3.  
  4. #ifndef BIG_ENDIAN
  5. #define BIG_ENDIAN 4321
  6. #define LITTLE_ENDIAN 1234
  7. #endif
  8.  
  9. #define SWAP_INT16(i)    (i) = (((i) & 0xff) << 8) | (((i) & 0xff00) >> 8)
  10. #define SWAP_INT32(i)    (i) = (((i) & 0xff) << 24) | (((i) & 0xff00) << 8) | (((i) & 0xff0000) >> 8) | (((i) & 0xff000000) >> 24)
  11.  
  12. int byteorder(void);
  13.  
  14. #endif
  15.